![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
A simple ES6 class that can be extended to provide macros and getters functionality
Extend
class
prototype in style 😎
Macroable is a simple class that your classes can extend in order to expose an API for extending the class. Let's see how a class can be extended without Macroable first.
class Foo {}
module.exports = Foo
Someone can extend it follows.
const Foo = require('./Foo')
Foo.prototype.greet = function () {
return 'Hello!'
}
// or add getter as follow
Object.defineProperty(Foo.prototype, 'username', {
get: function () {
return 'virk'
}
})
const { Macroable } from 'macroable'
class Foo extends Macroable {
}
Foo._macros = {}
Foo._getters = {}
module.exports = Foo
const Foo = require('./Foo')
Foo.macro('greet', function () {
return 'Hello!'
})
Foo.getter('username', function () {
return 'virk'
})
You can see the API is simpler and less verbose. However, their are couple more benefits to using Macroable.
macros
and getters
added using Macroable.npm i macroable
const { Macroable } from 'macroable'
class Foo extends Macroable {
}
Foo._macros = {}
Foo._getters = {}
module.exports = Foo
Add a function to the prototype
Foo.macro('greet', function (name) {
return `Hello ${name}!`
})
Find if macro exists.
Foo.hasMacro('greet')
Add getter to the prototype and optionally make it singleton.
Foo.getter('username', function () {
return 'virk'
}, true)
Find if getter exists.
Foo.hasGetter('greet')
Remove all macros and getters added using Macroable
.
Foo.getter('username', function () {
return 'virk'
}, true)
Foo.hydrate()
Foo.hasGetter('username') // false
The change log can be found in the CHANGELOG.md file.
Everyone is welcome to contribute. Please go through the following guides, before getting started.
thetutlage and contributors.
MIT License, see the included MIT file.
FAQs
A simple ES6 class that can be extended to provide macros and getters functionality
The npm package macroable receives a total of 0 weekly downloads. As such, macroable popularity was classified as not popular.
We found that macroable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.